home *** CD-ROM | disk | FTP | other *** search
/ Network CD 2 / Network CD - Volume 2.iso / programs / internet / mail / smailsr2.lha / SMail / src / RCS / pwd.h,v < prev    next >
Encoding:
Text File  |  1993-11-30  |  775 b   |  60 lines

  1. head    2.1;
  2. access;
  3. symbols
  4.     C_2:2.1
  5.     C_1:1.1;
  6. locks; strict;
  7. comment    @ * @;
  8.  
  9.  
  10. 2.1
  11. date    93.11.23.19.58.39;    author Aussem;    state Exp;
  12. branches;
  13. next    1.1;
  14.  
  15. 1.1
  16. date    93.09.08.16.25.48;    author Aussem;    state Exp;
  17. branches;
  18. next    ;
  19.  
  20.  
  21. desc
  22. @passwd structures
  23. @
  24.  
  25.  
  26. 2.1
  27. log
  28. @Version 2.0 check in
  29. @
  30. text
  31. @
  32. /*
  33.  *  PWD.H
  34.  *
  35.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  36.  */
  37.  
  38. struct passwd {
  39.     char    *pw_name;
  40.     char    *pw_passwd;
  41.     long    pw_uid;
  42.     long    pw_gid;
  43.     long    pw_quota;
  44.     char    *pw_comment;
  45.     char    *pw_gecos;
  46.     char    *pw_dir;
  47.     char    *pw_shell;
  48.     char    *pw_shell_arg0;    /*  arg0 broken out from pw_shell   */
  49.     char    *pw_shell_argn;    /*  remaining args from pw_shell    */
  50. };
  51. @
  52.  
  53.  
  54. 1.1
  55. log
  56. @Initial revision
  57. @
  58. text
  59. @@
  60.